home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: DSVisageSlide.dsrx 1.2 (30.5.00) Copyright (c) Nils Görs
- */
-
- Visage = "s:Visage.bat" /* Visage.bat is a frontend with several Visage settings i prefer */
- OutPut = "t:DS_VisageSlide." /* the PortName from DirScanner will be added after the dot. */
-
- options results
-
- PARSE ARG DSPort
- IF DSPort = "" THEN DSPort = DIRSCANNER.1
- address value DSPort
-
- unique=TIME('s')
- Catalog = output||unique||"."||DSPort
-
- SET LOCKGUI 1
-
- open(outfile,catalog,'W')
-
- more = 1
- DO WHILE more
- GOTO NEXTSEL
- more = result
- IF more = 1 THEN DO
- GET MATCH_FILE
- writeln(outfile,result)
- END
- ELSE more = 0
- END
-
- close(outfile)
-
- ADDRESS COMMAND Visage "LIST" Catalog
- ADDRESS COMMAND "Delete >NIL:" Catalog
-
- SET LOCKGUI 0
-